/* === AJUSTE FORZADO DE IMÁGENES EN EL PEDIDO === */
.cart-item-modern {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    padding: 10px 0 !important;
    position: relative !important;
}

/* Este es el contenedor cuadrado de la foto */
.cart-product-img {
    width: 65px !important;  /* Tamaño fijo pequeño */
    height: 65px !important; /* Tamaño fijo pequeño */
    flex-shrink: 0 !important;
    background: #f1f5f9 !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

/* Esta es la imagen real dentro del cuadro */
.cart-product-img img {
    max-width: 90% !important; /* Para que no toque los bordes */
    max-height: 90% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important; /* Evita que se deforme la botella */
    display: block !important;
}
